home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / ISDBFMEM.HDR < prev    next >
Text File  |  1994-04-25  |  892b  |  36 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _IsDBFMem( cFileName ) --> cMemField(s)
  8.  
  9. PARAMETERS:
  10.  
  11. cFileName : The name of the file to check
  12.  
  13. SHORT:
  14.  
  15. Return the name(s) of any memo fields in the specified (unopen) database.
  16.  
  17. DESCRIPTION:
  18.  
  19. _IsDBFMem() returns the name(s) of MEMO fields in a database (separated by
  20. commas in the case of multiple memo fields). The database need not be open in
  21. any work area.
  22.  
  23. NOTE:
  24.  
  25.  
  26.  
  27. EXAMPLE:
  28.  
  29. t = _IsDBFMem('TEST.DBF')
  30.  
  31. Result: t = "" if no mem fields
  32.         t = "MEMO1" if one memo field called MEMO1
  33.         t = "MEMO1,MEMO2" if two memo fields called MEMO1 & MEMO2
  34.  
  35. ******************************************************************************/
  36.